home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_openpty.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  707b  |  22 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. import os
  5. from test.test_support import verbose, TestFailed, TestSkipped
  6.  
  7. try:
  8.     if verbose:
  9.         print 'Calling os.openpty()'
  10.     
  11.     (master, slave) = os.openpty()
  12.     if verbose:
  13.         print '(master, slave) = (%d, %d)' % (master, slave)
  14. except AttributeError:
  15.     raise TestSkipped, 'No openpty() available.'
  16.  
  17. if not os.isatty(slave):
  18.     raise TestFailed, 'Slave-end of pty is not a terminal.'
  19.  
  20. os.write(slave, 'Ping!')
  21. print os.read(master, 1024)
  22.